MSYSTEM: "MINGW64"
CHERE_INVOKING: "yes"
+macos:
+ stage: build
+ tags:
+ - macos
+ needs: []
+ before_script:
+ - bash .gitlab-ci/show-execution-environment.sh
+ - pip3 install --user meson==0.56
+ - pip3 install --user ninja
+ - export PATH=/Users/gitlabrunner/Library/Python/3.7/bin:$PATH
+ script:
+ - meson -Dx11-backend=false
+ -Dintrospection=disabled
+ _build
+ - ninja -C _build
+ artifacts:
+ when: always
+ paths:
+ - "${CI_PROJECT_DIR}/_build/meson-logs"
+
.flatpak-defaults:
image: $FLATPAK_IMAGE
stage: flatpak
harfbuzz_dep = dependency('harfbuzz', version: '>= 0.9', required: false,
fallback: ['harfbuzz', 'libharfbuzz_dep'])
xkbdep = dependency('xkbcommon', version: xkbcommon_req, required: wayland_enabled)
-graphene_dep = dependency('graphene-gobject-1.0', version: graphene_req,
- fallback: ['graphene', 'graphene_dep'])
+if os_darwin
+ graphene_dep = dependency('graphene-gobject-1.0', version: graphene_req,
+ fallback: ['graphene', 'graphene_dep'],
+ default_options: ['introspection=false'])
+else
+ graphene_dep = dependency('graphene-gobject-1.0', version: graphene_req,
+ fallback: ['graphene', 'graphene_dep'])
+endif
iso_codes_dep = dependency('iso-codes', required: false)
gtk_doc_dep = dependency('gtk-doc', version: '>=1.33',